home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_glimpse.idb / usr / freeware / src / glimpse-3.0 / libtemplate / util / xmalloc.c.z / xmalloc.c
C/C++ Source or Header  |  1997-09-09  |  4KB  |  114 lines

  1. static char rcsid[] = "$Id: xmalloc.c,v 1.8 1995/02/04 01:37:58 hardy Exp $";
  2. /*
  3.  *  xmalloc.c - Memory allocation for Essence system.
  4.  *
  5.  *  Darren Hardy, hardy@cs.colorado.edu, February 1994
  6.  *
  7.  *  ----------------------------------------------------------------------
  8.  *  Copyright (c) 1994, 1995.  All rights reserved.
  9.  *  
  10.  *          Mic Bowman of Transarc Corporation.
  11.  *          Peter Danzig of the University of Southern California.
  12.  *          Darren R. Hardy of the University of Colorado at Boulder.
  13.  *          Udi Manber of the University of Arizona.
  14.  *          Michael F. Schwartz of the University of Colorado at Boulder. 
  15.  *  
  16.  *  This copyright notice applies to all code in Harvest other than
  17.  *  subsystems developed elsewhere, which contain other copyright notices
  18.  *  in their source text.
  19.  *  
  20.  *  The Harvest software was developed by the Internet Research Task
  21.  *  Force Research Group on Resource Discovery (IRTF-RD).  The Harvest
  22.  *  software may be used for academic, research, government, and internal
  23.  *  business purposes without charge.  If you wish to sell or distribute
  24.  *  the Harvest software to commercial clients or partners, you must
  25.  *  license the software.  See
  26.  *  http://harvest.cs.colorado.edu/harvest/copyright,licensing.html#licensing.
  27.  *  
  28.  *  The Harvest software is provided ``as is'', without express or
  29.  *  implied warranty, and with no support nor obligation to assist in its
  30.  *  use, correction, modification or enhancement.  We assume no liability
  31.  *  with respect to the infringement of copyrights, trade secrets, or any
  32.  *  patents, and are not responsible for consequential damages.  Proper
  33.  *  use of the Harvest software is entirely the responsibility of the user.
  34.  *  
  35.  *  For those who are using Harvest for non-commercial purposes, you may
  36.  *  make derivative works, subject to the following constraints:
  37.  *  
  38.  *  - You must include the above copyright notice and these accompanying 
  39.  *    paragraphs in all forms of derivative works, and any documentation 
  40.  *    and other materials related to such distribution and use acknowledge 
  41.  *    that the software was developed at the above institutions.
  42.  *  
  43.  *  - You must notify IRTF-RD regarding your distribution of the 
  44.  *    derivative work.
  45.  *  
  46.  *  - You must clearly notify users that your are distributing a modified 
  47.  *    version and not the original Harvest software.
  48.  *  
  49.  *  - Any derivative product is also subject to the restrictions of the 
  50.  *    copyright, including distribution and use limitations.
  51.  */
  52. #include <stdio.h>
  53. #include <stdlib.h>
  54. #include <string.h>
  55. #include "util.h"
  56. #ifdef MEMORY_LEAKS
  57. #include "leak.h"
  58. #endif
  59.  
  60. /*
  61.  *  xmalloc() - same as malloc(3) except if malloc() returns NULL, then
  62.  *  xmalloc() prints an error message and calls exit(3).  So xmalloc()
  63.  *  always returns non-NULL values.
  64.  */
  65. void *xmalloc(sz)
  66. size_t sz;
  67. {
  68.     static void *p;
  69.  
  70. #ifdef MEMORY_LEAKS
  71.     leak_logging = 1;
  72. #endif
  73.     if ((p = malloc(sz)) == NULL) {
  74.         errorlog("malloc: Out of memory! Exiting...\n");
  75.         exit(1);
  76.     }
  77.     memset(p, '\0', sz);    /* NULL out the memory */
  78.     return (p);
  79. }
  80.  
  81. /*
  82.  *  xfree() - same as free(3).
  83.  */
  84. void xfree(s)
  85. void *s;
  86. {
  87. #ifdef MEMORY_LEAKS
  88.     leak_logging = 1;
  89. #endif
  90.     if (s != NULL) {
  91.         free(s);
  92.     }
  93. }
  94.  
  95. /*
  96.  *  xrealloc() - same as realloc(3).  Exits on error, so always returns
  97.  *  non-NULL values.
  98.  */
  99. void *xrealloc(s, sz)
  100. void *s;
  101. size_t sz;
  102. {
  103.     static void *p;
  104.  
  105. #ifdef MEMORY_LEAKS
  106.     leak_logging = 1;
  107. #endif
  108.     if ((p = realloc(s, sz)) == NULL) {
  109.         errorlog("realloc: Out of memory! Exiting...\n");
  110.         exit(1);
  111.     }
  112.     return (p);
  113. }
  114.